home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / DEC / DI9512DH / mdiedit.dfm / mdiedit.txt < prev   
Text File  |  1995-11-03  |  5KB  |  221 lines

  1. object EditForm: TEditForm
  2.   Left = 191
  3.   Top = 349
  4.   Width = 399
  5.   Height = 210
  6.   ActiveControl = Memo1
  7.   Caption = 'Untitled'
  8.   Ctl3D = False
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   FormStyle = fsMDIChild
  14.   Icon.Data = {<image000.ico>}
  15.   Menu = MainMenu1
  16.   PixelsPerInch = 96
  17.   Position = poDefault
  18.   Visible = True
  19.   OnActivate = MRUDisplay
  20.   OnClose = FormClose
  21.   OnCloseQuery = FormCloseQuery
  22.   TextHeight = 16
  23.   object Memo1: TMemo
  24.     Left = 0
  25.     Top = 0
  26.     Width = 391
  27.     Height = 164
  28.     Cursor = crIBeam
  29.     Align = alClient
  30.     BorderStyle = bsNone
  31.     Ctl3D = False
  32.     Font.Color = clBlack
  33.     Font.Height = -13
  34.     Font.Name = 'Courier New'
  35.     Font.Style = []
  36.     ParentCtl3D = False
  37.     ParentFont = False
  38.     PopupMenu = MemoPopUp
  39.     ScrollBars = ssBoth
  40.     TabOrder = 0
  41.     WordWrap = False
  42.   end
  43.   object MainMenu1: TMainMenu
  44.     AutoMerge = True
  45.     Left = 335
  46.     object File1: TMenuItem
  47.       Caption = '&File'
  48.       object New1: TMenuItem
  49.         Caption = '&New'
  50.         OnClick = New1Click
  51.         ShortCutText = 'Ctrl+N'
  52.       end
  53.       object Open1: TMenuItem
  54.         Caption = '&Open'
  55.         OnClick = Open1Click
  56.         ShortCutText = 'Ctrl+O'
  57.       end
  58.       object Close1: TMenuItem
  59.         Caption = '&Close'
  60.         OnClick = Close1Click
  61.       end
  62.       object N1: TMenuItem
  63.         Caption = '-'
  64.       end
  65.       object Save1: TMenuItem
  66.         Caption = '&Save'
  67.         OnClick = Save1Click
  68.         ShortCutText = 'Ctrl+S'
  69.       end
  70.       object SaveAs1: TMenuItem
  71.         Caption = 'Save &As...'
  72.         OnClick = SaveAs1Click
  73.       end
  74.       object N2: TMenuItem
  75.         Caption = '-'
  76.       end
  77.       object Print1: TMenuItem
  78.         Caption = '&Print'
  79.         OnClick = Print1Click
  80.         ShortCutText = 'Ctrl+P'
  81.       end
  82.       object PrintSetup1: TMenuItem
  83.         Caption = 'Prin&t Setup...'
  84.         OnClick = PrintSetup1Click
  85.       end
  86.       object N3: TMenuItem
  87.         Caption = '-'
  88.       end
  89.       object MRU1: TMenuItem
  90.         OnClick = MRUClick
  91.       end
  92.       object MRU2: TMenuItem
  93.         Tag = 1
  94.         OnClick = MRUClick
  95.       end
  96.       object MRU3: TMenuItem
  97.         Tag = 2
  98.         OnClick = MRUClick
  99.       end
  100.       object MRU4: TMenuItem
  101.         Tag = 3
  102.         OnClick = MRUClick
  103.       end
  104.       object MRUSeparator: TMenuItem
  105.         Caption = '-'
  106.       end
  107.       object Exit1: TMenuItem
  108.         Caption = 'E&xit'
  109.         OnClick = Exit1Click
  110.       end
  111.     end
  112.     object Edit1: TMenuItem
  113.       Caption = '&Edit'
  114.       GroupIndex = 1
  115.       OnClick = SetEditItems
  116.       object Cut1: TMenuItem
  117.         Caption = 'Cu&t'
  118.         OnClick = CutToClipboard
  119.         ShortCutText = 'Ctrl+X'
  120.       end
  121.       object Copy1: TMenuItem
  122.         Caption = '&Copy'
  123.         OnClick = CopyToClipboard
  124.         ShortCutText = 'Ctrl+C'
  125.       end
  126.       object Paste1: TMenuItem
  127.         Caption = '&Paste'
  128.         OnClick = PasteFromClipboard
  129.         ShortCutText = 'Ctrl+V'
  130.       end
  131.       object Delete1: TMenuItem
  132.         Caption = 'De&lete'
  133.         OnClick = Delete
  134.         ShortCutText = 'Del'
  135.       end
  136.       object TMenuItem
  137.         Caption = '-'
  138.       end
  139.       object SelectAll1: TMenuItem
  140.         Caption = 'Select &All'
  141.         OnClick = selectAll
  142.       end
  143.     end
  144.     object Character1: TMenuItem
  145.       Caption = '&Character'
  146.       GroupIndex = 1
  147.       object Left1: TMenuItem
  148.         Caption = '&Left'
  149.         Checked = True
  150.         GroupIndex = 2
  151.         OnClick = AlignClick
  152.       end
  153.       object Right1: TMenuItem
  154.         Caption = '&Right'
  155.         GroupIndex = 2
  156.         OnClick = AlignClick
  157.       end
  158.       object Center1: TMenuItem
  159.         Caption = '&Center'
  160.         GroupIndex = 2
  161.         OnClick = AlignClick
  162.       end
  163.       object TMenuItem
  164.         Caption = '-'
  165.         GroupIndex = 2
  166.       end
  167.       object WordWrap1: TMenuItem
  168.         Caption = '&WordWrap'
  169.         GroupIndex = 3
  170.         OnClick = SetWordWrap
  171.       end
  172.       object TMenuItem
  173.         Caption = '-'
  174.         GroupIndex = 3
  175.       end
  176.       object Font1: TMenuItem
  177.         Caption = '&Font...'
  178.         GroupIndex = 4
  179.         OnClick = SetFont
  180.       end
  181.     end
  182.   end
  183.   object MemoPopUp: TPopupMenu
  184.     OnPopup = SetPopUpItems
  185.     Left = 308
  186.     Top = 65534
  187.     object Cut2: TMenuItem
  188.       Caption = 'Cut'
  189.       OnClick = CutToClipboard
  190.     end
  191.     object Copy2: TMenuItem
  192.       Caption = 'Copy'
  193.       OnClick = CopyToClipboard
  194.     end
  195.     object Paste2: TMenuItem
  196.       Caption = 'Paste'
  197.       OnClick = PasteFromClipboard
  198.     end
  199.   end
  200.   object FontDialog1: TFontDialog
  201.     Font.Color = clWindowText
  202.     Font.Height = -13
  203.     Font.Name = 'System'
  204.     Font.Style = []
  205.     MinFontSize = 0
  206.     MaxFontSize = 0
  207.     Left = 363
  208.   end
  209.   object PrinterSetupDialog1: TPrinterSetupDialog
  210.     Left = 256
  211.   end
  212.   object PrintDialog1: TPrintDialog
  213.     Left = 280
  214.   end
  215.   object SaveFileDialog: TSaveDialog
  216.     Filter = 'Text Files (*.txt) | *.txt | All Files (*.*) | *.*'
  217.     Options = [ofHideReadOnly, ofNoReadOnlyReturn]
  218.     Left = 232
  219.   end
  220. end
  221.